home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / readsubdir.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  267 b   |  21 lines

  1. #ifndef READSUBDIR_H
  2. #define READSUBDIR_H
  3.  
  4. #include "direntry.h"
  5.  
  6. typedef struct readsubdir
  7.  {
  8.   DIR *dir;
  9.   int pos;
  10.   char *name;
  11.   void (*pause)();
  12.  }
  13. readsubdir;
  14.  
  15. extern void readsubdir_init();
  16. extern int readsubdir_next();
  17.  
  18. #define READSUBDIR_NAMELEN 10
  19.  
  20. #endif
  21.